home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 014 / dex / test.c < prev    next >
Text File  |  1995-03-17  |  1KB  |  45 lines

  1. /************************************************************************
  2.  *                                    *
  3.  *            Copyright (c) 1982, Fred Fish            *
  4.  *                All Rights Reserved                *
  5.  *                                    *
  6.  *    This software and/or documentation is released for public    *
  7.  *    distribution for personal, non-commercial use only.        *
  8.  *    Limited rights to use, modify, and redistribute are hereby    *
  9.  *    granted for non-commercial purposes, provided that all        *
  10.  *    copyright notices remain intact and all changes are clearly    *
  11.  *    documented.  The author makes no warranty of any kind with    *
  12.  *    respect to this product and explicitly disclaims any implied    *
  13.  *    warranties of merchantability or fitness for any particular    *
  14.  *    purpose.                            *
  15.  *                                    *
  16.  ************************************************************************
  17.  */
  18.  
  19.  
  20. /*
  21.  *  FUNCTION
  22.  *
  23.  *    tolower    convert character to lower case
  24.  *
  25.  *  SYNOPSIS
  26.  *
  27.  *    char tolower(ch)
  28.  *    char ch;
  29.  *
  30.  *  DESCRIPTION
  31.  *
  32.  *    Tolower converts a character from upper case
  33.  *    to lower case. Characters which are already
  34.  *    lower case or are not alphabetic are returned
  35.  *    unmodified.
  36.  *
  37.  *        a   =>   a
  38.  *        A   =>   a
  39.  *        &   =>   &
  40.  *        7   =>   7
  41.  *            .
  42.  *           etc
  43.  *
  44.  */
  45.